
.contact-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 10px;
    transition: all 0.3s ease;
}

.contact-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.contact-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
}

.contact-link:hover,
.contact-link:focus {
    text-decoration: none;
    color: inherit;
}

.contact-button {
    background-color: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    cursor: pointer;
}

.contact-button:hover {
    background-color: var(--secondary-color);
}

.contact-button:focus {
    outline: none;
    box-shadow: none;
}

.contact-button i {
    color: white;
    font-size: 20px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(26, 95, 122, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(26, 95, 122, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(26, 95, 122, 0);
    }
}

.contact-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    margin: 0;
    white-space: nowrap;
}

#contactModal .modal-content {
    border-radius: 0;
    border: none;
    background-color: var(--background-color);
}

#contactModal .modal-header {
    background-color: var(--primary-color);
    color: white;
    border-bottom: none;
    padding: 1.5rem;
}

#contactModal .modal-title {
    font-weight: 700;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#contactModal .modal-body {
    padding: 2rem;
}

.contact-option {
    background-color: white;
    border-left: 5px solid var(--secondary-color);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contact-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.contact-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.contact-action {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.whatsapp-action {
    background-color: var(--secondary-color);
}

.whatsapp-action:hover {
    background-color: #0f7773;
}

.call-action {
    background-color: var(--accent-color);
}

.call-action:hover {
    background-color: #4aa396;
}

.contact-action i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}